home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 16 / wp42sma.zip / WP41MOUS.DOC < prev    next >
Text File  |  1986-02-23  |  6KB  |  149 lines

  1.  
  2.  
  3. wp41.doc - Sun Feb 23 13:36:32 1986     page 1
  4.  
  5.  
  6.           The wp41.arc file contains the following data sets:
  7.  
  8.           WP41MOUS.DOC .... This file.
  9.           WP41.DEF ........ A MicroSoft mouse menu source file for Word Perfect, version 4.1.
  10.           WP41.MNU ........ The menu after WP41.DEF is run through the  MAKEMENU program.
  11.           WP41.BAT ........ A sample setup batch file for starting the Word Perfect program
  12.                             and using the mouse menus.
  13.           SAVEENV.COM ..... A program that will save your current DOS environment variables
  14.                             along with the current drive and path.
  15.           Introduction.
  16.  
  17.              My eyesight not being what it once was, I was finding it hard to
  18.              read the function key template that came with Word Perfect 4.1.
  19.              Also, my fairly large left hand keeps obscuring the codes on key
  20.              F10.  Partly to help resolve this problem, and partly in answer to
  21.              a friend who insisted that MicroSoft Word was the way to go because
  22.              of its mouse interface; I dug into the mouse manual and coded some
  23.              menus for Word Perfect.
  24.  
  25.              Since you may not agree with my choice of locations for the menus,
  26.              or the literals therein, I have supplied the source code to the
  27.              menu for you to change as you see fit.
  28.  
  29.           Using the menu.
  30.  
  31.              Place the menu WP41.MNU in the same directory as the MENU.COM program
  32.              that came with the MicroSoft Mouse.  Before starting up Word Perfect
  33.              execute the command:
  34.  
  35.                 MENU WP41
  36.  
  37.              A sample batch file has been included to show one way to do this.
  38.  
  39.              After Word Perfect starts, your mouse will work as follows:
  40.  
  41.              o The mouse can control the cursor movement.
  42.  
  43.              o The left mouse button will display a menu that can also be used
  44.                as a quick help screen, since it is an image of the function key
  45.                pad.  In addition, you may move the inverse video cursor to any
  46.                of the displayed keys and select one of the items.
  47.  
  48.                Some of the keys cause additional menus to be displayed.  For
  49.                example, if you choose the Screen command (CTL F3), a menu
  50.                with the six screen command options appears.  You may choose one
  51.                of these six options, or you may choose the CANCEL option.  Note:
  52.                on multi menu options, no keystrokes are sent to Word Perfect
  53.                until the last menu has been displayed.  Thus, selecting "Screen"
  54.                and then selecting sub-option "Window" causes the key sequence
  55.                (CTL F3) (1) to be sent to Word Perfect, as if it had been typed
  56.                on the keyboard.
  57.  
  58.                Due to the delay of key transmission, you may notice some of the
  59.                word processor's menus appearing in the background.  This should
  60.                cause no problems, outside of the esthetic ones.
  61.  
  62.                Certain commands require keyboard input, for example "RETRIEVE".
  63.                Whenever a function key sequence reaches a point where keyboard
  64.  
  65.  
  66.  
  67.  
  68.  
  69. wp41.doc - Sun Feb 23 13:36:32 1986     page 2
  70.  
  71.  
  72.                input would be required, the mouse menu politely bows out.  There
  73.                is no menu, for example, to handle the "PRINTER CONTROL" function.
  74.                Thus if you click on "PRINTER" and then choose "Printer Control",
  75.                the printer control menu will appear, and the mouse will be
  76.                fairly useless, until the document is redisplayed.
  77.  
  78.              o The right mouse button turns on the BLOCK command. This is useful
  79.                for grabbing large blocks of text to move or copy.
  80.  
  81.              o Pressing both mouse buttons displays the "PRINT" menu as if the
  82.                Shift and F7 keys were pressed.
  83.  
  84.  
  85.  
  86.  
  87.  
  88.           WP41.DEF
  89.  
  90.           This is the source file for the pop-up menus.   The most obvious
  91.           modifications you may want to make are menu text, menu location and
  92.           the movement sensitivity.
  93.  
  94.  
  95.  
  96.  
  97.  
  98.           WP41.MNU
  99.  
  100.           Since it takes a while for MAKEMENU to compile the menu, you may
  101.           want to use DEBUG to modify the movement sensitivity values.  Refer
  102.           to your mouse manual under make menu to get the meanings of these
  103.           values.
  104.           To change them, just type the following:
  105.  
  106.                DEBUG WP41.MNU
  107.                -e10E xx
  108.                -e110 xx
  109.                -w
  110.                -q
  111.           At address 10E is the horizontal sensitivity setting, at address 110
  112.           (hex) is the vertical sensitivity setting.  Note: the defaults are
  113.           18 (hex) and 20 (hex) respectively.
  114.  
  115.  
  116.  
  117.  
  118.           SAVEENV.COM:
  119.  
  120.           This is a program to save your current operating environment, for
  121.           restoration later.  SAVEENV creates a batch file in the root directory
  122.           on drive C.  This file, $OLDENV2.BAT, will switch drives back to the
  123.           drive that was active when SAVEENV was executed, then it will switch
  124.           to the directory that was active when SAVEENV was executed.  Lastly
  125.           it will set up the environment variables that were in effect when
  126.           SAVEENV was executed.
  127.  
  128.           NOTE:  If you add new environment variables after SAVEENV has been
  129.           run, you may not have enough space for SAVEENV to restore your
  130.           original environment variables.
  131.  
  132.  
  133.  
  134.  
  135.  
  136. wp41.doc - Sun Feb 23 13:36:32 1986     page 3
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.           WP41.BAT
  146.  
  147.           This sample batch file sets up the mouse menus for Word Perfect.  It
  148.           also illustrates how to use SAVEENV.COM.
  149.